home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 September / Australian PC User - September 2003 (CD1).iso / magstuff / web / files / psp801ev.exe / Data1.cab / Preset_Enamel_Custom_2.PspSc < prev    next >
Encoding:
Text File  |  2003-06-06  |  618 b   |  27 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Custom 2 Enamel preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_Enamel():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Color': (0, 0, 0),
  19.         'Density': 16,
  20.         'Angle': 45,
  21.         'Detail': 16,
  22.         'Blur': 40,
  23.         }
  24.  
  25. def Do(Environment):
  26.     App.Do(Environment, 'Enamel', Preset_Enamel())
  27.